home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / lib / toupper.c < prev    next >
C/C++ Source or Header  |  1998-10-01  |  92b  |  7 lines

  1. #include <ctype.h>
  2.  
  3. BYTE toupper(char c)
  4. {
  5.   return ((c >= 'a' && c <= 'z') ? c - 32: c);
  6. }
  7.